home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- PZeroPoint.cpp ------------------------------------------------------------
- * Copyright (c) 1996 Adobe Systems Incorporated. All rights reserved.
- * Created on Tue, Oct 15, 1996 @ 11:20 AM.
- *
- * Description: For notes about this class, refer to the
- * PCL documentation file PZeroPoint.html
- *-------------------------------------------------------------------------
- */
-
- #include "PZeroPoint.h"
- #include "PCommand.h"
-
- PZeroPoint::PZeroPoint(long xCoord, long yCoord)
- {
- long x[2];
- x[0] = xCoord;
- x[1] = yCoord;
- PCommand command(pm_zeropoint, x, 4 * sizeof(long));
- }
-
- // end of PZeroPoint.cpp
-